Python function remove all whitespace from all character columns in dataframe

45

Python function remove all whitespace from all character columns in dataframe -

df.columns = df.columns.str.replace(' ', '')

Comments

Submit
0 Comments